home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / LINEDSIZ.HDR < prev    next >
Text File  |  1994-04-25  |  1KB  |  41 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _LineEditSize(cKey, cAlias, cField) --> nCommentSize
  8.  
  9. PARAMETERS:
  10.  
  11. cKey   : Unique record key for relational lookups
  12. cAlias : Alias Name of work area for text
  13. cField : Field name in the cALias work area for text
  14.  
  15. SHORT:
  16.  
  17. Determine size of a comment stored in a comment base.
  18.  
  19. DESCRIPTION:
  20.  
  21. _LineEditSize() returns the length of a comment that is stored in a
  22. LineEdit database.
  23.  
  24. See _LineEditGet() for a full description.
  25.  
  26. NOTE:
  27.  
  28.  
  29.  
  30. EXAMPLE:
  31.  
  32. _LineEditSize(Accounts->CustAccNum,'ACCOUNTS','COMMENTS')
  33.  
  34. Result: The comments stored in the database aliased as ACCOUNTS, using
  35. the character field COMMENTS, is examined and it's size is returned.
  36.  
  37. That is: ACCOUNTS->Comments is evaluated for all it's records and
  38. the cumulative size is returned.
  39.  
  40. ******************************************************************************/
  41.